Kameleon-Plus  0.3.2
MagnetogramInterpolator.h
Go to the documentation of this file.
1 /*
2  * MagnetogramInterpolator.h
3  *
4  * Created on: Sep 23, 2009
5  * Author: dberrios
6  */
7 
8 #ifndef MAGNETOGRAMINTERPOLATOR_H_
9 #define MAGNETOGRAMINTERPOLATOR_H_
10 
11 #include "Interpolator.h"
12 #include "Model.h"
13 
14 namespace ccmc
15 {
23  {
24  public:
26  float interpolate(const std::string& variable, const float&, const float&, const float&);
27  float interpolate(const std::string& variable, const float&, const float&, const float&, float&, float&, float&);
28  float interpolate(const long& variable_id, const float&, const float&, const float&);
29  float interpolate(const long& variable_id, const float&, const float&, const float&, float&, float&, float&);
30 
31  virtual ~MagnetogramInterpolator();
32  };
33 }
34 
35 #endif /* MAGNETOGRAMINTERPOLATOR_H_ */